home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 21 / Cream of the Crop 21 (Terry Blount) (October 1996).iso / os2 / vsoup11.zip / smtp.hh < prev    next >
Text File  |  1996-07-29  |  726b  |  27 lines

  1. //  $Id: smtp.hh 1.2 1996/07/29 22:31:09 hardy Exp $
  2. //
  3. //  This progam/module was written by Hardy Griech based on ideas and
  4. //  pieces of code from Chin Huang (cthuang@io.org).  Bug reports should
  5. //  be submitted to rgriech@ibm.net.
  6. //
  7. //  This file is part of soup++ for OS/2.  Soup++ including this file
  8. //  is freeware.  There is no warranty of any kind implied.  The terms
  9. //  of the GNU Gernal Public Licence are valid for this piece of software.
  10. //
  11.  
  12.  
  13. #ifndef __SMTP_HH__
  14. #define __SMTP_HH__
  15.  
  16.  
  17. #include <stdio.h>
  18. #include "socket.hh"
  19.  
  20.  
  21. int  smtpConnect( TSocket &socket );
  22. void smtpClose( TSocket &socket );
  23. int  smtpMail( TSocket &socket, FILE *fd, size_t bytes );
  24.  
  25.  
  26. #endif   // __SMTP_HH__
  27.